Analyse Any Business Instantly Using N8N and BrowserAct

If you do cold outreach, you already know how much time it takes to understand a prospect’s business before sending a message. Most people skip this step and that’s why their outreach sounds generic, boring, and gets ignored.

In this tutorial, I’ll share an automated workflow built using n8n, BrowserAct, and AI, which:

  • Visits your prospect’s website
  • Scrapes the full content
  • Cleans the messy text
  • Generates a clean business summary
  • Stores everything in Google Sheets
  • And can be used to write personalised cold outreach messages automatically

Sign up on BrowserAct

You can download the entire workflow JSON and use it instantly.

⬇️ Download Workflow JSON

Code Node JavaScript

// Get the original text
let text = $json.output.string;

// Remove markdown-style links: [text](URL)
text = text.replace(/\[([^\]]+)\]\(([^)]+)\)/g, '$1');

// Remove any raw URLs (http, https, tel)
text = text.replace(/https?:\/\/\S+|tel:\S+/g, '');

// Remove iframe URLs
text = text.replace(/IFRAME\s+\S+/g, '');

// Optional: clean repeated spaces or newlines
text = text.replace(/\s{2,}/g, ' ');
text = text.replace(/\n{2,}/g, '\n');

return {
  cleanedText: text.trim()
};

AI Agent System Message

You are an expert to analyze website text and generate a short, clear business summary.

Your task:

1. Read the provided website content.
2. Identify:
   - What the business does
   - Industry and location (if mentioned)
   - Who their customers are (target audience)
   - Their main services, products, or offerings
   - Any unique selling points or claims. 

3. Produce a clean summary in simple language.

Output format:

1–3 sentences explaining what the business does, who they serve, and where they operate. A bullet list (5-10 items max) of the main services/products extracted from the content.

Rules:
- Do NOT include links or contact info.
- Do NOT copy long sentences — paraphrase.
- Keep tone neutral and business-professional.
- If information is unclear or missing, skip instead of guessing.


Keep Reading

Category AI Posted on

How to Build a Viral AI Video Bot with n8n, Nano Banana 2 & Kling 3.0

I built an n8n workflow that turns any topic into a viral AI video in seconds — and sends it straight to Telegram. https://youtu.be/dIuvKKO0dUw What We're Building This workflow takes a text topic from Telegram, creates an AI image using Nano Banana 2, converts it into a video using Kling 3.0, and delivers the final result back to your Telegram — all automatically. What You Need An n8n …
Continue reading
Category AI Posted on

How to Setup & Use Clawdbot (OpenClaw): The Complete Guide

In this guide, I will show you how to setup and use Clawdbot - the viral AI personal assistant that has recently rebranded to OpenClaw (and was briefly known as Moltbot). If you’ve been looking for a tutorial to build a 24/7 digital employee that handles your tasks while you sleep, you’re in the right place. The internet went crazy over this tool because it's not just a chatbot; it's a proactive assistant that li…
Continue reading